home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Compilers⁄Interps
/
GCC 1.37.1r15 Full
/
Miscellaneous
/
ecoff-cmp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-03-08
|
246 b
|
13 lines
|
[
TEXT/MPS
]
#!/bin/sh
#
# ecoff-cmp file1.o file2.o
#
cp $1 /tmp/foo1.$$
cp $2 /tmp/foo2.$$
strip /tmp/foo1.$$
strip /tmp/foo2.$$
tail +10 /tmp/foo1.$$ > /tmp/foo3.$$
tail +10 /tmp/foo2.$$ > /tmp/foo4.$$
cmp /tmp/foo3.$$ /tmp/foo4.$$
rm -f /tmp/foo[1234].$$